home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 010a / mutoscan.zip / AUTOSCAN.DOC < prev    next >
Text File  |  1992-01-13  |  2KB  |  47 lines

  1.                                  AUTOSCAN
  2.  
  3.                                R. P. Reeves
  4.                                16215 Mill Point
  5.                                Houston, TX  77059
  6.  
  7. This program was written to automate the execution of McAfee's virus
  8. scanner using QuickBasic 4 and Crescent Software's Quickpak
  9. Professional.
  10.  
  11. This software is hereby released to the public domain. Any donations
  12. should be sent to the address listed above. I have installed this
  13. software on all PC's on the network at my place of employment, and wrote
  14. it at the request of someone who rebooted several times a day (heavy
  15. Windows user) and didn't want SCAN to execute each time.
  16.  
  17. AUTOSCAN should be placed in your in the beginning of your AUTOEXEC.BAT
  18. file but after your path assignment, which must include the path to
  19. SCAN.EXE. SCAN.EXE (McAfee's virus scanner) should be in the root
  20. directory of your C: drive or in a directory pointed to by your path
  21. statement. AUTOSCAN will run only once per day, even if you reboot your
  22. PC several times during the course of the day. It works by sending the
  23. output of SCAN to a file in the root directory of C: that is date coded
  24. from the PC's internal clock (example 11201991.X%X). When the machine is
  25. booted, AUTOSCAN determines if the machine has been scanned that day by
  26. looking for a file coded with that day's date. If this file is found,
  27. AUTOSCAN simply continues the boot process. If this file is not found,
  28. AUTOSCAN directs SCAN to scan all logical drives and sends the output to
  29. both the screen and to a date coded file. AUTOSCAN will erase the
  30. previous day's report file so that these files do not accumulate on the
  31. PC's hard drive. Drives that do not exist will simply not be included in
  32. the report.
  33.  
  34. Note that AUTOSCAN does not scan floppy drives. Suspect floppy disks
  35. should be scanned manually (example SCAN A:).
  36.  
  37.  
  38. Example of AUTOEXEC.BAT
  39.  
  40. @echo off
  41. prompt $p$g
  42. path c:\;c:\dos;c:\virus
  43. call startnet
  44. autoscan
  45. any additional commands...
  46. ..........................
  47.